home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / BOOT_UTL / TPREBOOT / REBOOT.PAS < prev    next >
Pascal/Delphi Source File  |  1995-01-14  |  130b  |  13 lines

  1. Unit Reboot;
  2.  
  3. INTERFACE
  4.  
  5. Procedure RebootMach;
  6.  
  7. IMPLEMENTATION
  8.  
  9. {$L REBOOT.OBJ}
  10.  
  11. Procedure RebootMach; External;
  12.  
  13. end.